A 'break' statement is used to cause an immediate exit from the switch body. Without it execution will continue with the statements following the remaining cases. The example above has the same effect as the 'else if' example from the previous section, and demonstrates judicious use of break statements.